From 865201302c1ba430fac354780ff146a26720d693 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 15 Mar 2023 23:33:56 +0100 Subject: [PATCH] luci-app-firewall: suppress lengthy masq description in zone table Ensure that the description of the masquerade option does not end up in the grid section overview as it messes up the table layout. Fixes: c54efde717 ("luci-app-firewall: Add clarification to masquerading option") Signed-off-by: Jo-Philipp Wich (cherry picked from commit c0d4c0172529e060926e8fa00714bd9e8b567cb4) --- .../htdocs/luci-static/resources/view/firewall/zones.js | 1 + 1 file changed, 1 insertion(+) diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js index 53a07b6fb1..e19e466e1b 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js @@ -95,6 +95,7 @@ return view.extend({ s.addremove = true; s.anonymous = true; s.sortable = true; + s.nodescriptions = true; s.handleRemove = function(section_id, ev) { return firewall.deleteZone(section_id).then(L.bind(function() { -- 2.30.2